[Docker] Docker tag


Docker tag

  • With the following command, we create a new image from the old docker tag, and assign it to a new docker tag.
      docker tag ad-website:latest ad-website:1
    
  • After we do this, we get two images referencing the same docker tag, which help us not lose the previous image's version when we create a new image tagged with the same tag(usually latest).
      docker build -t ad-website:latest .
    
#docker






你可能感興趣的文章

[C#] 同網站下,不同應用程式在ASP.NET MVC 使用 Owin 驗證的登入登出問題

[C#] 同網站下,不同應用程式在ASP.NET MVC 使用 Owin 驗證的登入登出問題

圖片縮放效果 補

圖片縮放效果 補

[Week 6] CSS:其他整理

[Week 6] CSS:其他整理






留言討論